home *** CD-ROM | disk | FTP | other *** search
- /**[f******************************************************************
- * CIClrMgt.h -- CIColorManagement Interface definition
- *
- * Copyright (c) 1996 Adobe Systems, Inc. All Rights Reserved
- *
- *
- * ABSTRACT:
- *
- * USAGE:
- *
- *
- *
- **f]******************************************************************/
-
- #ifndef __CICLRMGT_H
- #define __CICLRMGT_H
- #include "pmtypes.h"
-
- class CIColorManagement : public CIInterface {
- public:
- // get all profiles associated with current pub
- // Note: Caller is responsible for freeing the handle if this method is successful,
- // via FreeHandle method
- virtual PMXErr GetAllSourceProfiles ( PMHandle *phProfileNames, unsigned short *pNameCnt, unsigned short *pSizeEach) = 0;
- virtual void FreeHandle ( PMHandle aHandle) = 0;
- };
-
- #endif // __CICLRMGT_H
-